Chart for WPF and Silverlight > Chart Features > Interaction > Changing Rotation for 3D Chart |
This is available in WPF only.
To change the rotation view for 3D chart type at runtime, add the Rotate3DAction class to Actions collection. For example, to rotate chart with the middle mouse button use the following XAML code:
XAML |
Copy Code
|
---|---|
<c1chart:C1Chart.Actions>
<c1chart:Rotate3DAction MouseButton="Middle" />
</c1chart:C1Chart.Actions>
|